Grid XML - images in the attribute of each node

XML data file

Use AW.Templates.ImageText or AW.Templates.Image for the image columns

	grid.setCellTemplate(new AW.Templates.ImageText, 1)

Add getImage() method to the data model -

	data.getImage = function(col, row){
		return this.getNode(col, row).getAttribute("code");
	}

Back to image examples, all examples